home *** CD-ROM | disk | FTP | other *** search
/ Amiga Games Extra 1996 September / Amiga Games Extra CD-ROM 9-1996.iso / spiele / publicdomain / elan / src / texts.h < prev   
C/C++ Source or Header  |  1996-06-07  |  1KB  |  61 lines

  1.  
  2. typedef enum message_class
  3.     {
  4.     blank_message,
  5.     title_message,
  6.     shuttle_arrived,
  7.     shuttle_departed,
  8.     system_failure,
  9.     system_attacked,
  10.     channel_attacked,
  11.     system_repaired,
  12.     channel_repaired,
  13.     human_support_critical,
  14.     hybrid_support_critical,
  15.     human_birth,
  16.     hybrid_morphed,
  17.     pantropic_birth,
  18.     mutant_birth,
  19.     robot_terminated,
  20.     pantropic_terminated,
  21.     mutant_terminated,
  22.     alien_terminated,
  23.     colony_terminated,
  24.     select_item_to_buy,
  25.     insuff_money_to_buy_item,
  26.     select_item_to_install,
  27.     item_not_available,
  28.     square_not_empty,
  29.     square_not_explored,
  30.     neighbor_plant,
  31.     too_many_devices,
  32.     too_many_channels,
  33.     too_many_mobiles,
  34.     resource_not_exportable,
  35.     insuff_money_to_build_channel,
  36.     impossible_to_cross_square,
  37.     game_loaded,
  38.     file_mismatch,
  39.     load_error,
  40.     game_saved,
  41.     save_error,
  42.     place_habitat,
  43.     confirm_departure,
  44.     ask_for_help,
  45.     end_of_game,
  46.     MESSAGE_CLASS_NUMBER
  47.     } message_class;
  48.  
  49. #define QUALITIES_NUMBER    8
  50. #define SEASONS_NUMBER      4
  51.  
  52. extern const char *quality[QUALITIES_NUMBER];
  53. extern const char *season_name[SEASONS_NUMBER];
  54. extern const char *device_name[DEVICE_CLASS_NUMBER];
  55. extern const char *resource_name[RESOURCE_TYPE_NUMBER];
  56. extern const char *measure_unit[RESOURCE_TYPE_NUMBER];
  57. extern const char *mobile_name[MOBILE_CLASS_NUMBER];
  58. extern const char *program_tag_name[PRIMARY_PT_NUMBER];
  59. extern const char *message_text[MESSAGE_CLASS_NUMBER];
  60.  
  61.